Contribution org.nuxeo.dam.pageproviders--providers
In component org.nuxeo.dam.pageproviders
org.nuxeo.dam.pageproviders
inside nuxeo-dam-jsf-5.8.jar
This contribution is part of XML component Extension Point
Extension point providers of component PageProviderService.Contributed Items
XML Source
<extension point="providers" target="org.nuxeo.ecm.platform.query.api.PageProviderService">
<coreQueryPageProvider name="SAVED_DAM_SEARCHES">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:mixinType = 'DamSearch'
AND dc:creator = ? AND ecm:isProxy = 0
AND ecm:isCheckedInVersion = 0
AND ecm:currentLifeCycleState != 'deleted'
</pattern>
<sort ascending="true" column="dc:title"/>
</coreQueryPageProvider>
<coreQueryPageProvider name="SHARED_DAM_SEARCHES">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:mixinType = 'DamSearch'
AND dc:creator != ? AND ecm:isProxy = 0
AND ecm:isCheckedInVersion = 0
AND ecm:currentLifeCycleState != 'deleted'
</pattern>
<sort ascending="true" column="dc:title"/>
</coreQueryPageProvider>
<genericPageProvider class="org.nuxeo.dam.provider.ImportFolderPageProvider" name="damImportFolders">
<pattern escapeParameters="true" quoteParameters="false">
SELECT * FROM Document WHERE ecm:fulltext.dc:title LIKE '?' AND ecm:mixinType !=
'HiddenInNavigation' AND ecm:mixinType = 'Folderish'
AND ecm:currentLifeCycleState != 'deleted'
</pattern>
<sort ascending="true" column="dc:title"/>
<pageSize>10</pageSize>
</genericPageProvider>
</extension>